home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 30
/
Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso
/
Aminet
/
dev
/
lang
/
SmallEiffel.lha
/
SmallEiffel
/
lib_show
/
bench4
/
bench.csh
< prev
next >
Wrap
Linux/UNIX/POSIX Shell Script
|
1998-12-22
|
255b
|
14 lines
#!/bin/csh -f
#
# Run this file to have a comparison
#
foreach b (*_bench.e)
set cmd="compile $b make -no_split -boost -O3"
set cmd="${SmallEiffel}/bin/$cmd"
$cmd >& /dev/null
echo "$b : "
/bin/time a.out >&! tmp
grep "user" tmp
end
/bin/rm -f tmp